home *** CD-ROM | disk | FTP | other *** search
/ Cream of the Crop 26 / Cream of the Crop 26.iso / program / ddj0897.zip / RCSC.ZIP / PACKAGES / AWK320.ZIP / ARGV.AWK next >
Text File  |  1990-02-08  |  101b  |  4 lines

  1. # print all the command line arguments of the program
  2.  
  3. BEGIN { for (i in ARGV) print i, ARGV[i] }
  4.